1 /************************************************************
2 * Copyright *
3 * Portions of this software are Copyright (c) 1993 - 2002, *
4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew *
5 * - http://www.nevrona.com/Indy/ *
6 ************************************************************/
7 package org.indy;
8
9 import java.util.EventListener;
10
11
12 /***
13 *
14 * <p>Title: </p>
15 * <p>Description: </p>
16 * <p>Copyright: Copyright (c) 2002</p>
17 * <p>Company: </p>
18 * @author unascribed
19 * @version 1.0
20 */
21 public interface TCPServerExecuteListener extends EventListener {
22 /***
23 *
24 * @param sender
25 * @param connection
26 * @throws IndyException
27 */
28 void onExecute(TCPServer sender, TCPServerConnection connection)
29 throws IndyException;
30 }
This page was automatically generated by Maven